home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Utilities
/
Workspace
/
OpenApps
/
Source
/
OpenApps_main.m
< prev
next >
Wrap
Text File
|
1995-06-12
|
550b
|
21 lines
/*
** OpenApps_main.m
** Larry Shupe
** April 1990
**
** A one line program to open the user's ~/Apps directory from the Workspace.
** Put this application in your dock and create symbolic links in your ~/Apps
** directory to all your most used programs. Doing this will give you quick
** access to programs that are not in your dock. You can create a symbolic
** link in the Workspace by control dragging a file's icon into your ~/Apps
** folder.
*/
#import <stdlib.h>
void main(int argc, char *argv[])
{
system("open ~/Apps");
exit(0);
}